home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / binutils.252 / ld / ldscript / go32.xr < prev    next >
Encoding:
Text File  |  1994-12-17  |  302 b   |  21 lines

  1. OUTPUT_FORMAT("coff-go32")
  2. SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/go32/lib);
  3. ENTRY(start)
  4. SECTIONS
  5. {
  6.   .text  : {
  7.     *(.text)
  8.     ;
  9.   }
  10.   .data  : {
  11.     *(.data)
  12.     ;
  13.   }
  14.   .bss  :
  15.   {                     
  16.     *(.bss)
  17.     *(COMMON)
  18.     ;
  19.   }
  20. }
  21.